home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 February / Macworld (1999-02).dmg / Serious Demos / XTension demo / Scripts / DuskSensor#2.On < prev    next >
Text File  |  1998-07-28  |  256b  |  10 lines

  1. -- This sensor is trying to announce "DUSK"
  2. -- if it's already dusk, ignore this ON
  3. --  because it may be just chattering...headlights ??
  4.  
  5. if (status of "Its Dark") = false then
  6.     if (status of "DuskSensor#1") = true then
  7.         turnon "Its Dark"
  8.     end if
  9. end if
  10.